home *** CD-ROM | disk | FTP | other *** search
/ CD-ROM Now 11 / CD-ROM Now MegaDisc 11 (1995-02).iso / discs / toolkit / 12 / readme < prev    next >
Text File  |  1994-10-27  |  5KB  |  106 lines

  1. These are 1.2 MB bootkernel images for Slackware Linux 2.0.0.
  2.  
  3. These disks currently use Linux 1.0.9.
  4.  
  5. You'll need one of these to get Linux started on your system so that you can
  6. install it. Because of the possibility of collisions between the various Linux
  7. drivers, several bootkernel disks have been provided. You should use the one
  8. with the least drivers possible to maximize your chances of success. All of
  9. these disks support UMSDOS.
  10.  
  11. You will be using the bootkernel disk to boot a root-install disk. See the
  12. rootdsks.12 or rootdsks.144 directories for these. (You can use a 1.44 MB root
  13. disk with these boot disks if you have a 1.44 MB second floppy drive.)
  14.  
  15. A bootkernel disk is created by uncompressing the image with GZIP.EXE 
  16. (Example: GZIP -d bare.gz), and then writing the image out with RAWRITE.EXE.
  17.  
  18. RAWRITE is interactive and reasonably user-friendly.
  19.  
  20. --------------------------------------------------------------------------------
  21. Here's a description of the disks:
  22.  
  23. bare.gz     - contains IDE hard drive drivers only.
  24. cdu31a.gz   - contains IDE and SCSI drivers, plus Sony CDU31/33a CD drivers.
  25. mitsumi.gz  - contains IDE and SCSI drivers, plus the Mitsumi CD driver.
  26. modern.gz   - an experimental 1.1.18 bootdisk - this has drivers for everything
  27.               except network cards and the Sony 535 CD-ROM. If you have driver
  28.               conflicts with a different disk, you might want to try this one.
  29. ncr.gz      - a 1.1.19 bootdisk with Trantor T128 and NCR53c810 PCI SCSI
  30.               drivers. See also the ncr1 and ncr2 disks in ./slakware.
  31. net.gz      - contains IDE hard drive and ethernet drivers.
  32. sbpcd.gz    - contains IDE and SCSI drivers, plus SB Pro/Panasonic CD drivers.
  33. scsi.gz     - contains IDE hard drive, SCSI hard drive, and SCSI CD-ROM drives.
  34. scsinet.gz  - contains IDE hard drive, SCSI hard drive, SCSI CD-ROM, and 
  35.               ethernet drivers.
  36. sony535.gz  - contains IDE and SCSI drivers, plus Sony 535/531 CD drivers.
  37. xt.gz       - contains IDE hard drive and XT hard drive drivers.
  38. --------------------------------------------------------------------------------
  39.  
  40. IMPORTANT HELPFUL HINTS: (AND WHAT TO DO IF THE INSTALLED SYSTEM WON'T BOOT)
  41.  
  42. The kernels provided with the Slackware A series (idekern and scsikern) are
  43. reasonably generic to maximize the chances that your system will boot after
  44. installation. However, you should compile a custom kernel after installing,
  45. selecting only the drivers your system requires. This will offer optimal
  46. performance. You'll need to recompile your kernel to enable support for non-SCSI
  47. CD-ROM drives, bus-mice, sound cards, and many other pieces of hardware. The
  48. drivers could not be included with the pre-compiled kernels because they cause
  49. system hangs and other compatiblity problems for people that don't have the
  50. hardware installed.
  51.  
  52. On a similar note, any time you use one kernel to install, and a different 
  53. kernel the first time the installed system is started, you run the risk that
  54. the second kernel won't be compatible for some reason. If your system fails
  55. to reboot after installation, you'll have to compile a custom kernel for your
  56. hardware. Follow these steps:
  57.  
  58. 0. If you haven't installed the C compiler and kernel source, do that.
  59.  
  60. 1. Use the bootkernel disk you installed with to start your machine. At the LILO
  61.    prompt, enter: 
  62.    
  63.      mount root=/dev/hda1
  64.                 ^^^^^^^^^ Or whatever your root Linux partition is.
  65.  
  66.    Ignore any error messages as the system starts up.
  67.  
  68. 2. Log in as root, and recompile the kernel with these steps. (Comments will be
  69.    placed in parenthesis) 
  70.  
  71.    cd /usr/src/linux
  72.    make config   (Choose your drivers. Repeat this step until you are satisfied
  73.                   with your choices)
  74.    
  75.    If you are using LILO, this will build and install the new kernel:
  76.  
  77.      make dep ; make clean ; make zlilo 
  78.      rdev -R /vmlinuz 1
  79.  
  80.    If you are using a bootdisk, these commands will build the kernel and create
  81.    a new bootdisk for your machine:
  82.  
  83.      make dep ; make clean ; make zImage
  84.      rdev -R zImage 1    (If you use UMSDOS for your root partition, use
  85.                           'rdev -R zImage 0' instead)
  86.      rdev -v zImage -1
  87.      rdev zImage /dev/hda1   (replace /dev/hda1 with the name of your root Linux
  88.                               partition)
  89.      (Now, put a disk into your floppy drive to be made into the new bootdisk:)
  90.      fdformat /dev/fd0H1440 
  91.      cat zImage > /dev/fd0
  92.  
  93. That should do it! You should now have a Linux kernel that can make full use of
  94. all supported hardware installed in your machine. Reboot and try it out.
  95.  
  96. Good luck!
  97.  
  98. ---
  99. Patrick Volkerding
  100. volkerdi@mhd1.moorhead.msus.edu
  101.  
  102. PS - Bug reports welcome. Requests for help may be answered if time permits.
  103.      I've been happy to do this in the past, but lately I've had both a lot 
  104.      more work to do and a lot more mail to deal with. It's just not as possible
  105.      to keep up with my mail as it once was.
  106.